.form-all{
  font-size: 16px;
}


/* Heading */
.section-heading-form {
	margin-top: 40px;
  margin-bottom: 40px;
}

.section-heading-form h2 {
    float: center;
	font-size: 36px;
	font-weight: 600;
	color: #1e1e1e;
}

.section-heading-form h3 {
	font-size: 24px;
	font-weight: 600;
	color: #1e1e1e;
	padding-bottom: 10px;
}

.section-heading-form ul {
  margin-left: 2.5em;
  list-style: none;
  font-size: 14px;
  color: #666666;
}

.section-heading-form ul li::before {
  content: "\2022";
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.section-heading-form em {
	font-style: normal;
	color: #a4c639;
}

.section-heading-form span {
	display: block;
	margin-top: 15px;
	font-size: 15px;
	color: #666;
	letter-spacing: 1px;
}

/* Sub-heading */
.section-subheading-form {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}

.section-subheading-form h3 {
	font-size: 28px;
	font-weight: 600;
	color: #1e1e1e;
  border-bottom-width: 5px;
  border-bottom-color: black;
}



.section-subheading-form em {
	font-style: normal;
	color: #a4c639;
}

.section-subheading-form span {
	display: block;
	margin-top: 15px;
	font-size: 12px;
	color: #666;
	letter-spacing: 1px;
}


/* Form css */

.left-form{
  text-align: center;
}

.right-form{
  text-align: center;
}

/* Form element */
.form-element{
  padding-top: 15px;
  padding-bottom: 15px;
}


.form-element input{
  width: 260px;

  /* Common Borders */
  border-radius: .25em;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(169, 169, 169);
  padding: 1.5px;
}

.form-element select{
  width: 260px;
  background-color: #FFF;
  height: 30px;

  /* Common Borders */
  border-radius: .25em;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(169, 169, 169);
}

.form-element label{
  display: inline-block;
}

@media (min-width:440px) {
  .description{
    margin-left: 10%;
    margin-right: 10%;
  }
}


@media (min-width:1200px) {
  .poc{
    margin-left: 10%;
    margin-right: 10%;
  }
}
@media (max-width:1200px) {
  .poc{
    text-align: center;
  }
}



.agreement{
  padding-top: 35px;
}
@media (min-width:440px) {
  .agreement{
    margin-left: 5%;
    margin-right: 5%;
  }
}

.form-submit-button{
  margin-top: 20px;
}
@media (min-width:440px) {
  .form-submit-button{
    margin-left: 5%;
    margin-right: 5%;
  }
}


/* TextArea */
.textwrapper textarea
{
  width:100%;

  /* Common Borders */
  border-radius: .25em;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(169, 169, 169);
}
.textwrapper
{
  /* border:1px solid #999999; */
  /* margin:5px 0; */
  padding:3px;
}


/* Categpry List */
.category{
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (max-width:994px) {
  .category .form-element{
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .category-row{
    padding-top: 20px;
  }
  .category{
    text-align: center;
  }
}

@media (min-width:440px) {
  .category{
    margin-left: 6%;
    margin-right: 6%;
    text-align: center;
  }
}


.category-label {
  font-size: 16px;
  color: #212529;
}

.category h4{
  font-size: 16px;
}



/* Submit Button */
/* https://codepen.io/mccombsc/pen/ZEzxWPy */
.wrap {
  margin-top: 60px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button {
  min-width: 150px;
  min-height: 60px;
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #313133;
  background: #4FD1C5;
  /* background: linear-gradient(to right top, #d6ed17, #cbed13, #c0ec11, #b4ec10, #a8eb12); */
  background: linear-gradient(to right top, #cee50d, #bedf06, #add802, #9dd200, #8dcb00);
  /* background: linear-gradient(90deg, rgba(129,230,217,1) 0%, rgba(79,209,197,1) 100%); */
  border: none;
  border-radius: 1000px;
  box-shadow: 12px 12px 24px rgba(150,229,13,.64);
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px;
  }

.wrap button::before {
content: '';
  border-radius: 1000px;
  min-width: calc(150px + 12px);
  min-height: calc(60px + 12px);
  border: 3px solid #CEE50D;
  box-shadow: 0 0 60px rgba(0,255,0,0.64);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease-in-out 0s;
}

..wrap button:hover, ..wrap button:focus {
  color: #CEE50D;
  transform: translateY(-6px);
}

.wrap button:hover::before, .wrap button:focus::before {
  opacity: 1;
}

.wrap button::after {
  content: '';
  width: 30px; height: 30px;
  border-radius: 100%;
  border: 3px solid #CEE50D;
  position: absolute;
  z-index: 150;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}

.wrap button:hover::after, .wrap button:focus::after {
  animation: none;
  display: none;
}

@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 150px;
    height: 150px;
    opacity: 0;
  }
}

#reg-button-from-service{
    margin-top:25px;
}

.reg-button-from-service-button{
    text-transform: capitalize;
	padding: 5px 5px;
	display: inline-block;
	font-size: 15px;
	font-weight: 700;
	color: #121212;
	letter-spacing: 0.5px;
    border-radius: 10px;
    border-width: medium;
    border-style: solid;
    border-color: #a4c639;
}

.reg-button-from-service-button:hover{
	color: #666666;
}

/* For larger screens */
/* @media (min-width:440px) {
  .button {
    min-width: 240px;
  }

  .wrap button::before {
    min-width: calc(240px + 12px);
  }


  @keyframes ring {
    100% {
      width: 240px;
      height: 240px;
    }
  }
} */
